home *** CD-ROM | disk | FTP | other *** search
- * vhdlr.a68 -- video interrupt handler
- * Copyright (c) 1988, I and I Computing and Commodore-Amiga, Inc.
- *
- * Executables based on this information may be used in software
- * for Commodore Amiga computers. All other rights reserved.
- *
- * This information is provided "as is"; no warranties are made.
- * All use is at your own risk, and no liability or responsibility is assumed.
- *
-
-
- ; intSignal() -- interrupt handler simply signals main task
- ; pointer to SignalStuff arrives in A1
-
- public _LVOSignal
- public _intSignal
-
- _intSignal:
-
- move.l 4,a6 ; be sure about exec base
-
- move.l (a1),d0 ; signal bits
- move.l 4(a1),a1 ; task id
-
- jsr _LVOSignal(a6)
-
- moveq #0,d0 ; set Z so other handlers run
- rts
-
- end
-